home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.053 < prev    next >
Text File  |  1996-02-12  |  28KB  |  729 lines

  1. Frequently Asked Questions (FAQS);faqs.053
  2.  
  3.  
  4.  
  5.     Exceptions
  6.  
  7.     The policy of counting DTC users is new for the Series 700.
  8.     Customers who purchased Series 700 systems prior to HP-UX 9.0 shipments
  9.     (late calendar 1992) and use them as host systems for multiple DTC-
  10.     connected terminals, may continue to use those configurations without
  11.     buying a license upgrade. An update to HP-UX 9.0 will not lock out these
  12.     configurations.
  13.  
  14. [Thanks to Tony Hart, HP]
  15. --------------------------------------------------------------------------------
  16. Subject:  COMPILERS AND LINKERS
  17. --------------------------------------------------------------------------------
  18. 1)  What's a P-FIXUP error?
  19.  
  20.    Several questions on comp.sys.hp lately have involved the Gnu C compiler
  21. and the linker message below :
  22.  
  23.         gcc  test_h.o -o test_h ../libg++.a -lm
  24. ld: R_DATA_ONE_SYMBOL fixup in file ../libg++.a(streambuf.o) for code unsat
  25. symbol "abort" - use P' fixup
  26. collect: /bin/ld returned 1 exit status
  27.  
  28.    This is caused by the code generator emitting assembly code in a data
  29. subspace to initialize a function pointer, equivalent to :
  30.  
  31.     .word    foo
  32.  
  33. where (in this case) foo() is an extern, and shared libraries are referenced
  34. by the executable being built (usually libc.sl).
  35.  
  36.    The linker is being helpful by pointing out a fatal error waiting
  37. to happen, as function pointers are different in the presence of shared
  38. libraries.  A different fixup is needed to generate the kind of procedure
  39. label that can be called.  This is explained under "Procedure Labels" in
  40. Chapter 7 of "Programming on HP-UX" (Part # B2355-90026 E0892) and at the
  41. end of "Expressions" in Chapter 1 of the Assembly Language Reference Manual
  42. (Part # 92432-90001 E0191).
  43.  
  44.    There are two ways to fix this :
  45.     1) Change the code generation to the equivalent of :
  46.         .word P%foo
  47.     or
  48.     2) Link the program using the "-a archive" linker option.  The
  49.     easiest way to do this is via the LDOPTS environment variable :
  50.         setenv LDOPTS "-a archive"
  51.          - or -
  52.         LDOPTS="-a archive"; export LDOPTS
  53.  
  54.    The first fixes the problem directly, generating an R_DATA_PLABEL fixup
  55. which is unambiguous whether shared libraries are present or not.  The
  56. second puts you back in time to the situation before shared libraries were
  57. added to HP-UX.  Without shared libraries HP-UX drew no distinction between
  58. code addresses and procedure labels - an ambiguity that the P% fixup syntax
  59. resolves.
  60.  
  61.    The reason the linker can't just fix this situation is that there are
  62. cases where code addresses are implicitly or explicitly desired, cases that
  63. are part of the motivation for having an assembler to begin with.
  64. Unfortunately, in this case a message designed to be helpful to an errant
  65. assembly programmer is instead a symptom of an out-of-date code generator,
  66. and is too low-level to help the people seeing it.  The other alternative
  67. (letting the program segmentation violate at runtime with no warning) would
  68. be more likely to result in the user blaming the Gnu code generator instead
  69. of HP's linker, but otherwise very little more satisfying.
  70.  
  71. [thanks to Carl Burch, HP]
  72. ---------------------------------------------------------------------------
  73. 2)  Where is regcmp on HP-UX?
  74.  
  75. from man regcmp:
  76.  
  77.       regcmp and regex are kept in /lib/libPW.a, and are linked by using the
  78.       -lc and -lPW options to the ld or cc command.  See WARNINGS below.
  79. ...
  80.  
  81.  WARNINGS
  82.       regcmp and regex are kept in /lib/libPW.a.  Unfortunately,
  83.       /lib/libPW.a also contains some functions that have the same names as
  84.       functions contained in the default C library, /lib/libc.a.  To prevent
  85.       unexpected results due to these name conflicts, always search libc
  86.       before searching libPW.  This is done with the ld (or cc) command line
  87.       option sequence -lc -lPW which satisifies all standard C functions
  88.       from libc then searches libPW for the regcmp and regex functions
  89.       (there is also an implied -lc following the explicit -lPW to satisfy
  90.       any additional C functions required by regcmp and regex).
  91.  
  92.       User programs that use regcmp might run out of memory if regcmp is
  93.       called iteratively without freeing vectors that are no longer
  94.       required.
  95.  
  96. [thanks to Andre Srinivasan, andre@cs.pitt.edu]
  97. --------------------------------------------------------------------------------
  98. 3)  How come the default C compiler is brain-dead?
  99.  
  100. The C compiler shipped with HP-UX is intended only to rebuild the kernel
  101. with, not for program development. To get a "real" C compiler, you must
  102. buy the ANSI C program development bundle.
  103. --------------------------------------------------------------------------------
  104. Subject:  HARDWARE AND PERIPHERALS
  105. --------------------------------------------------------------------------------
  106. 1) Are alternate keyboards available for HP workstations?
  107.  
  108. Yes, HP has two keyboards available for their workstations and X Terminals.
  109.  
  110. - A1099B - Workstation style keyboard (Default on workstations.)
  111. - A2205A - PC-101 style keyboard (Default on X Terminals.)
  112. ---------------------------------------------------------------------------------
  113. 2) How can I play audio CDs on an HP workstation?
  114.  
  115. A contributed application ("xcd") exists that presents a X-window CD player
  116. front panel.  XCD runs on HP-UX 7.0 and 8.0, on Series 300, 400 and 700, with
  117. either SCSI or HP-IB CD-ROM drives. The SCSI drives must be HP-supplied or
  118. Toshiba XM-3201B or XM-3301B. XCD does not yet work on HP-UX 9.0.
  119.  
  120. XCD is available from the InterWorks workstation user group (see above),
  121. on their ftp site, CD-ROM, and via DAT tape."
  122.  
  123. Bob Niland of HP has volunteered to supply xcd via email. To get it from him:
  124.  
  125. 1. To supply Bob with at least one known-valid email address.
  126.    Don't rely on the return path - it often fails.
  127.  
  128. 2. To indicate whether you want the MC68000 (Series 300/400) and/or
  129.    PA-RISC (Series 700) version of XCD.  XCD does not work on Series 800,
  130.    due to lack of SCSI pass-thru and low-level HP-IB command capability.
  131.  
  132. 3. Make sure your mail path won't choke on 200+Kbyte shar files.
  133.  
  134. Note that source is not available.
  135.  
  136. For readers in Europe: XCD is available as a contributed application
  137. on the "LaserPro" cdrom disc.
  138.  
  139. Copies can be obtained freely through your local HP Sales office.
  140. Ask for the "LPO" department.
  141.  
  142. [ Thanks to Bob Niland of HP. ]
  143. ---------------------------------------------------------------------------------
  144. 3)  How can I enable the LAN interface on a 700?
  145.  
  146. This can be problem when the LAN isn't connected at boot time. To
  147. resolve the problem, use the "reset" command in "landiag".
  148.  
  149.  
  150.  
  151.  
  152.  
  153. --
  154. ---------------------------------------------------------------------------
  155. Greg Cagle                                      Mentor Graphics Corporation
  156. greg_cagle@mentorg.com                         Platform Technology Division
  157. (503)685-1570                                  Member of the Cultural Elite
  158. ---------------------------------------------------------------------------
  159. Xref: bloom-picayune.mit.edu soc.culture.magyar:2004 soc.culture.europe:15009 news.answers:4798
  160. Path: bloom-picayune.mit.edu!senator-bedfellow.mit.edu!senator-bedfellow.mit.edu!usenet
  161. From: fekete@bcvax1.bc.edu
  162. Newsgroups: soc.culture.magyar,soc.culture.europe,news.answers
  163. Subject: Hungarian electronic resources FAQ
  164. Supersedes: <hungarian-faq_722757619@athena.mit.edu>
  165. Followup-To: soc.culture.magyar
  166. Date: 26 Dec 1992 06:02:15 GMT
  167. Organization: Massachvsetts Institvte of Technology
  168. Lines: 100
  169. Approved: news-answers-request@MIT.Edu
  170. Expires: 8 Feb 1993 06:02:10 GMT
  171. Message-ID: <hungarian-faq_725349730@athena.mit.edu>
  172. Reply-To: fekete@bcvms.bc.edu
  173. NNTP-Posting-Host: pit-manager.mit.edu
  174. X-Last-Updated: 1992/05/15
  175.  
  176. Archive-name: hungarian-faq
  177. Last-modified: 1992/05/14
  178. Version: 0.1
  179.  
  180. Updated versions of these Frequently Asked Questions of Hungarian interest
  181. (with some answers) are posted to Usenet and the email lists concerned
  182. about every two weeks.
  183.  
  184. -Q: What services are available in Hungarian language?
  185. -A: a number of them from Hollosi Information Exchange. Email to
  186. gtoth@phoenix.princeton.edu with Subject: HIX and in the body of the mail put
  187. HELP or SUBS service-name, for getting help or subscribing, resp. The
  188. postings are sent out daily in digested form. The HIX server can also send
  189. out archived files - use HELP SENDDOC to learn about this feature.
  190. -----------------------------------------------------------
  191. HIRMONDO     -- daily news (edited in Budapest)
  192. Radios Hirek -- news summary from the Hungarian Radio
  193. SZALON       -- moderated political discussion forum
  194. FORUM        -- unmoderated political discussion forum
  195. TIPP         -- politics-free discussion, tips etc.
  196. ===========================================================
  197.  - my server ZFIX handles user-configurable email discussion:
  198. AGORA; to get its description in Hungarian send email to fekete@bcvms.bc.edu
  199. with Subject: AGORA$SEGITS (the body of these messages gets ignored).
  200.  
  201. -Q: Are there Hungarian-related services in (primarily) English?
  202. -A: HUNGARY@UCSBVM is a discussion group designed to provide a means of rapid
  203. communication between all those with interests in Hungarian issues. To
  204. subscribe to the discussion group, send an e-mail message, without any
  205. subject, to the list server address, "listserv@ucsbvm.bitnet" containing the
  206. single line:
  207. subscribe hungary your name
  208. with your own name inserted in place of the phrase "your name."
  209. Once you have subscribed, any messages which you want to send to the group
  210. should be sent to the group address, "hungary@ucsbvm.bitnet".
  211.  
  212. -Q: what about Usenet?
  213. -A: [Glad you asked :-)] There is soc.culture.magyar - with discussion mostly
  214. in English, sometimes bilingual, and occasionally Hungarian posts. If you're
  215. not using Usenet, ask around your site - it's available on many (if not most)
  216. Internet hosts, normally known as network news service. If you're under Unix,
  217. try the newsreaders rn, nn, vn or trn; under other operation systems it may
  218. be newsreader or of similar name. If you don't have local access, try TELNET
  219. bbs.acs.unc.edu or freenet-in-a.cwru.edu, where you can request permanent
  220. guest account with Usenet privileges (among other things).
  221.  If you want to receive soc.culture.magyar posts by email, you'd get them from
  222. AGORA (see above) - or can request separately emailing to fekete@bcvms.bc.edu
  223. with Subject: ZFIX$SUBS=SCM.
  224.  To learn more about Usenet use the archive site pit-manager.mit.edu - start
  225. with the file /pub/usenet/news.answers/news-answers-intro ( that lists a
  226. number of alternative archives located in Europe as well).
  227.   If you do not have anonymous ftp access, you can access the archives
  228. by mail server as well. Send an E-mail message to
  229. mail-server@pit-manager.mit.edu with "help" and "index" in the body on
  230. separate lines for more information.
  231.  
  232. -Q: Are there any other connections with Hungary, such as BBS networks
  233. (Fidonet etc.), Internet Relay Conferences (IRC) and so one?
  234. -A: I have no definite answer for these (although heard mentioning them),
  235. please someone enlighten us!
  236.  
  237. -Q: How to contact someone in Hungary by email?
  238. -A: If you do not know the address, that may be an even taller order then for
  239. most of the Internet. Hint: the audience of TIPP (see above) is probably the
  240. best - and that of Usenet is the worse to ask for help given the distribution
  241. of readers.
  242.  
  243. -Q: How to handle the Hungarian accented letters?
  244. -A: There is a number of solutions, mostly based on TeX. For starters check
  245. out SENDDOC programs etex.Z and hion.Z from HIX (see above) and also the
  246. babel system for LaTeX with Hungarian specific option, available from FTP
  247. sites kth.se or goya.dit.upm.es.
  248.  
  249. -Q: What's the single most important tool in locating useful files in the
  250. wilderness of Internet archives (I realize it's not a Hungarian question)?
  251. -A: It's undoubtedly ARCHIE! Telnet to one of the following servers, login
  252. archie and type help to get you started (and amazed).
  253.         archie.ans.net (USA [NY])
  254.         archie.rutgers.edu (USA [NJ])
  255.         archie.sura.net (USA [MD])
  256.         archie.unl.edu (USA [NE])
  257.         archie.mcgill.ca (Canada)
  258.         archie.funet.fi (Finland/Mainland Europe)
  259.         archie.au (Australia)
  260.         archie.doc.ic.ac.uk (Great Britain/Ireland)
  261. Email access is possible thru archie@<INSERT ONE OF ABOVE ADDRESSES HERE>, put
  262. Subject: help
  263.  
  264. -Q: How should I send suggestions, hatemail etc. concerning this FAQ?
  265. -A: I hereby solicit any additions, corrections, suggestions or questions. My
  266. primary email address is fekete@bcvms.bc.edu. *Please* note that due to the
  267. high volume of email I regularly have to sift messages without attentive and
  268. informative Subject: get deleted without reading (and putting "READ THIS"
  269. wouldn't do any good ;-) )! Begin the Subject: line with the string ZFIX$KERDES
  270. (followed by a descriptive subject of your choice) to enable automatized mail
  271. handling.
  272.  
  273. -- Zoli Fekete    fekete@bcvms.bc.edu
  274. "For my assured failures and derelictions, I ask pardon beforehand
  275. of my betters and my equals in my calling." - Rudyard Kipling
  276. Xref: bloom-picayune.mit.edu soc.culture.indian:108522 news.answers:4709
  277. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!snorkelwacker.mit.edu!stanford.edu!ames!sun-barr!male.EBay.Sun.COM!exodus.Eng.Sun.COM!exodus.Eng.Sun.COM!news
  278. From: vikas@deolali.Eng.Sun.COM (Vikas Deolaliker)
  279. Newsgroups: soc.culture.indian,news.answers
  280. Subject: [soc.culture.indian] FREQUENTLY ASKED QUESTIONS
  281. Supersedes: <scifaq_722278802@deolali>
  282. Followup-To: poster
  283. Date: 20 Dec 1992 16:59:27 GMT
  284. Organization: Sun Microsystems Inc., Mountain View, CA
  285. Lines: 1100
  286. Approved: news-answers-request@MIT.Edu (Jonathan I. Kamens)
  287. Distribution: world
  288. Expires: 2 Feb 1993 17:00:02 GMT
  289. Message-ID: <scifaq_724870802@deolali>
  290. Reply-To: vikas@deolali.Eng.Sun.COM (Vikas Deolaliker)
  291. NNTP-Posting-Host: deolali
  292.  
  293. Archive-name: india-faq
  294.  
  295. *****  ANSWERS    TO    FREQUENTLY   ASKED   QUESTIONS  *********
  296.  
  297. READ THIS BEFORE YOU POST A QUERY.
  298.  
  299. This message is automatically posted once a month. Hopefully  this
  300. will  reduce the amount of repetitive junk that is posted on sci.
  301. If you have answers to frequently asked questions that you  would
  302. like  included in this posting, Please send me mail. If you don't
  303. want to see this article ever again, Please add this subject line
  304. in your kill file.
  305.  
  306. -----------------------------------------------------------------
  307. This posting  was   last   Revised:   "@(#)scifaq 1.29 20 Oct 1992"
  308. Revised/New  Categories  are marked with asterik(*) for your con-
  309. vienience.
  310. -----------------------------------------------------------------
  311.  
  312. =================================================================
  313. NOTE:
  314. This  FAQ  posting  is  now  in USENET digest format.  If you are
  315. using  "rn"  (or  it  derivatives) to read news ^G (Ctrl- G) will
  316. take  you  to the next question.  If you are using any other news
  317. reader search for the next line that begins with "Subject:".
  318. =================================================================
  319.  
  320. *****************************************************************
  321. This periodic posting is now archived. It is available via
  322. anonymous ftp from
  323.     pit-manager.mit.edu (18.172.1.27)
  324.               OR
  325. sending email to
  326.     mail-server@pit-manager.mit.edu  with
  327. Subject: send usenet/soc.culture.indian/FREQUENTLY_ASKED_QUESTIONS
  328. ******************************************************************
  329. If you find that you need some detail info on any of these topics
  330. Please post the article, complile the information  and send it to
  331. me. If you find some information outdated/erroneous Please let me
  332. know.
  333.  
  334.  
  335.  
  336. Thank You,
  337.  
  338.  
  339. Vikas Deolaliker
  340.  
  341. vikas@sun.com
  342.  
  343. *****************************************************************
  344.  
  345.  
  346. Contents:
  347.  
  348. 1)    Information on Passport Renewals
  349. 2)    Addresses of Indian Consulates  in  US
  350. 3)    Information on Remitting Money to India
  351. 4)    Misc Junk..
  352. 5)    Indian  Books and Magazines
  353. 6)    Indian Newspapers Subcriptions
  354. 7)    Indian e-mail Addresses
  355. 8)    Shortwave Radio Frequencies
  356. 9)    Visitors Visa
  357. 10)    Visitors Medical Insurance.
  358. 11)    Custom Regulations
  359. 12)    Tourist Information
  360. 13)    Pal to Secam Conversion
  361. 14)    Sending Flowers to India
  362. 15)    Printing Indian Language Texts using TeX and/or PostScript
  363. 16)    Addresses of U.S Consulates in India
  364. 17)    Visa Cutoff Date
  365.  
  366. ************************************************************************
  367. ************************************************************************
  368. -------
  369. Subject: 1) Information on Passport Renewal
  370.  
  371. The Passport can be renewed anytime.
  372.  
  373. It is very important to contact the Indian Consular Office which has
  374. jurisdiction over your state of residence. The PROCEDURES FOLLOWED BY
  375. DIFFERENT CONSULAR OFFICES DO VARY. Some consular offices accept personal
  376. checks.
  377.  
  378. They charge $6.00.
  379.  
  380. You also need to affix proper return postage on a self-addressed envelope
  381. for registered mail.
  382.  
  383.  
  384.  
  385. PROCEDURES FOR RENEWING INDIAN PASSPORTS
  386.   This is a summary of an ad placed by the Indian consulate, San Francisco
  387. in Jan 1991.
  388.  You can get application forms by calling up 415-291-1403 at any time,
  389. leaving your name and address on the answering machine.
  390.   Passports can be renewed any time between one year before and one year
  391. after the date of expiry. If the passport is already 10 years old, a new
  392. booklet is issued for which 3 photos are required along with the old
  393. passport. The fee for renewal or new booklet is $6. New passports are
  394. valid for 10 years.
  395.   If your passport is lost or damaged, you have to make a special appli-
  396. -cation (6 copies and 7 photos)
  397.  They accept personal checks.
  398.  
  399. THE BOTTOM LINE
  400.  
  401. CALL THE CONSULATE WHICH OFFERS NRI SERVICES TO YOUR REGION
  402. AND ASK THEM  FOR THE DETAILS.
  403.  
  404. ************************************************************************
  405. ************************************************************************
  406. -------
  407. Subject: 2) Addresses of Indian Consulates in US
  408.  
  409.     STATES                                 ADDRESS
  410.     ======                             ===========================
  411. Alabama, Delaware, Dist. Of Columbia,          Embassy Of India
  412. Florida, Georgia, Kentucky, Louisiana,         2536 Massachusetts Ave. NW,
  413. Maryland, Mississipi, Arkansas, Tenness        Washington DC 20008.
  414. Virginia, W. Virginia & the Bahamas            Tel. 202-939-7000/9839
  415. North Carolina, South Carolina.
  416.  
  417. Connecticut, Maine, Massachusetts,              Consulate General Of India,
  418. New Hampshire, New Jersy, Newyork, Ohio,        3 East 64 Street,
  419. Pennsylvania, Puerto Rico, Rhode Island,        New York, NY 10021
  420. Vermont, Virgin Islands.                 Tel. 212-879-7800
  421.  
  422. Alaska, Arizona,Hawaii, Nebraska, New Mexico,   Consulate General of India,
  423. New Mexico, Nevada, Oklahoma, Oregon, Texas,    540 Arguello Blvd.
  424. Utah, Washington, Wyoming, Kansas, Colorado,    SAN FRANSISCO, CA 94118.
  425. Montana, Idaho, California.             Tel. 415-668-0683
  426.  
  427. Illinois, Indiana, Iowa, Michigan, Minnesota,   Consulate General Of India,
  428. North Dakota, South Dakota, Wisconsin, Missouri.150 North Michigan Ave. #1100
  429.                         CHICAGO, ILLINOIS 60601
  430.                         Tel: 312-781-6280
  431.  
  432.  
  433. Phone Ext:
  434.  
  435. Washington, D.C
  436.  
  437.    Indian Embassy: 202-939-7000 (Main Number)
  438.                           -7061 (I don't know for which dept.)
  439.                           -7066 (Passport Enquiries: after 2:00 pm)
  440.                           -7065 (To verify whether they have sent back the
  441.                                  passport, after you send it to them for
  442.                                  extension. Contact: Mrs. Nagarathnam)
  443.                           -7068 (Birth Certifcate: Contact Mr.Seti)
  444.                           -7060 (Contact Mr.Karry - I don't know for what)
  445.                           -9806 (For Customs/Duty Information)
  446.               -9850 (For Passport Renewal)
  447.  
  448.  
  449. Chicago:
  450.  
  451. 1. Consulate General of India-----312-781-6280
  452. 2. Consul Commerce----------------312-781-6274
  453. 3. Consul General-----------------312-781-6271
  454. 4. Passport Section---------------312-781-6268
  455. 5. Vice Counsel-Passport, Visa----312-781-6288
  456. 6. Visa Section-------------------312-781-6289
  457. 7. India Govt. tourist Office-----312-236-6899
  458.                                   312-236-7869
  459.  
  460.  
  461. ************************************************************************
  462. ************************************************************************
  463. -------
  464. Subject: 3) Information on Remitting Money to India
  465.  
  466. There are three major banks which advertise  regularly  in  India
  467. Abroad.  These banks offer wide variety of services including CDs
  468. and money transfer facilities to India. Since the  banking  poli-
  469. cies change everyday, it is best that you get the latest informa-
  470. tion from the banks themselves. Their toll free numbers are list-
  471. ed as follows.
  472.  
  473. i)   State Bank of India
  474.     New York                California    
  475.      1 (800) 227-4309        1 (213) 623-7250 (L.A.)    
  476.      1 (212) 735-9600 (Park Ave)     1 (213) 865 5009 (Artesia)    
  477.      1 (718) 445-3900 (Flushing)
  478.          
  479.  
  480.     Chicago                 Washington
  481.      1 (800) 621-1299        1 (202) 296-4061
  482.      1 (312) 621-1200
  483.  
  484.  
  485. ii)  Citibank India Investments
  486.     Call 1 (800) CITI-NRI for NRE,FCNR accounts
  487.          1 (800) 248-4674
  488.     Call 1 (716) 634-2390 for application for rupee draft.
  489. iii) American Express
  490.     Call 1 (800) 688-5494
  491.  
  492.  
  493. ************************************************************************
  494. ************************************************************************
  495. -------
  496. Subject: 4) Misc. Junk
  497.  
  498. i)      If you need the toll free number of any company in USA PLEASE call
  499.         1 + (800) + 555-1212. They will even thank you for using their company.
  500. ii)     If you need to call directory assistance of any state call
  501.     1 + (area code of the state )  + 555-1212. You should however know
  502.     which city in that state your friend lives in.
  503. iii)     For local assistance call 411. Again you should know the city.
  504. iv)    If you need the STD code of any city in India call the AT&T operator
  505.     dial 0+0 (In most of the places ).
  506.  
  507.  
  508.  
  509. ************************************************************************
  510. ************************************************************************
  511. -------
  512. Subject: 5) Indian Books and Magazines
  513.  
  514.  
  515. There are a lot of good Indian magazines but I only have information on
  516. these . If you all know how to subscribe and how much damage it does to
  517. our pocket books, Please let me know .
  518.  
  519.  
  520. ILLUSTRATED WEEKLY OF INDIA
  521.     The General Manager (RMD)
  522.     The Times of India    
  523.     Dr. D.N. Road
  524.     Bombay 400001
  525.     India
  526.     Rs. 1560-00 (by air)
  527.     Rs.  620-00 (by sea)
  528.  
  529.  
  530.  
  531.  
  532. DHARMAYUG
  533.  
  534.     (1)    10-Dariyaganj, New Delhi - 110 002
  535.     (2)    139, Ashram Road, Ahmedabad-380 009
  536.     (3)    13/1, Goverment Place East, Calcutta -69
  537.     (4)    Gangagruh, 3rd Floor, 6-D Nungambakkam High Road,
  538.         Madras - 600 034
  539.     (5)    40/1 S&B Towers, 88, M.G.Road, Bangalore 560 001
  540.     (6)    407/1 Tirath Bhavan, Carter Gate, Pune-411 002
  541.  
  542.     UK Bch:    P.O.Box 57, Gloucester GL2 6DS, UK.
  543.     Tel (0452) 306546
  544.  
  545.  
  546. INDIA TODAY
  547.     India Today International
  548.     Living Media India Ltd.
  549.     404 Park Avenue South
  550.     New York, NY 10016
  551.     212-481-0040
  552.     212-779-8206 (FAX)
  553.     Subscription - $49 payable to Living Media India Ltd.
  554.  
  555. EPW
  556.     Economic and Political Weekly
  557.     Hitkari House,
  558.     284 Shahid BhagatSingh Marg,
  559.     Bombay 400 038
  560.     India
  561.     Cost: $80 p.a checks o.k
  562.  
  563. BUSINESS INDIA
  564.  
  565.     Wadia Bldg,
  566.     17/19 Dalal Street,
  567.     Fort,  Bombay 400 001
  568.      India    
  569.     Tel + 91 (22) 27-4161/27-1558
  570.  
  571.  
  572.  
  573. MAIL ORDER BOOKS
  574.  
  575.         South Asia Books
  576.     P.O. Box 502
  577.     Columbia, Missouri 65205
  578.     (314) 474 0116
  579.  
  580.     The Asia Society/"Bookmarks"
  581.     725 Park Ave.
  582.     New York, NY 10021
  583.  
  584. ************************************************************************
  585. ************************************************************************
  586. -------
  587. Subject: 6) Indian Newspapers
  588.  
  589. If you want to stay in touch with events back home, the simplest
  590. alternative is to subscribe to one of the Indian papers published in the
  591. US. The two best known are INDIA ABROAD and INDIA WEST.
  592.  
  593. INDIA ABROAD
  594. 43 West 24th Street,7th floor
  595. New York
  596. NY 10010
  597. 212-929-1762
  598. (There are three US editions, Eastern, Midwest and Western, besides
  599. Canadian and British editions. Specify which edition you want.)
  600. Subscription:6 months $15, 12 months $26
  601.  
  602. INDIA WEST
  603. 5901 Christie Avenue, Suite 301
  604. Emeryville,CA 94608
  605. 415-652-3552
  606. Subscription: 6 months $15, 12 months $25, 24 months $45.
  607. They accept Visa/MC
  608.  
  609. The following dealer advertises that they supply all Indian newspapers and
  610. magazines, as well as books. Ask them for their price list.
  611.  
  612. INDO-US BOOKS AND JOURNALS INC.
  613. 35-52 73rd Street
  614. Jackson Heights
  615. NY 11372
  616. For Subscription info Call Mr Singh (7:00pm - 9:00pm EST)
  617. (718) 899-5590
  618.  
  619.  
  620. "The Hindu" International Edition can be obtained from
  621.  
  622. The Hindu,
  623. Kasturi Bldg,
  624. 859/860 Anna Salai,
  625. Madras 600002
  626. India
  627.  
  628.     For USA and Canada
  629. M/s Peekay International Inc.,
  630. 4-40, 44th Drive, Long Island City,
  631. New York, NY, 11101, U.S.A.
  632. Tel : (718) 786-4460
  633. Telex : 4933794 SHREE
  634. Fax : (718) 786-5512.
  635.  
  636.     For U.K. and Europe
  637. Parry Murry & Co. Ltd.
  638. Prudential House, 9th Floor,
  639. Wellesley Road, Croydon,
  640. LONDON CRO 9XY, United Kingdom.
  641. Tel: 01-681-5441/2
  642. Telex: 266874-UBIQUE G.
  643.  
  644. Annual Subscription rates (by Airmail from Madras) effective 9th June, 1990.
  645.  
  646.     U.S. $42-00 or Br. 26.00 pounds.
  647.  
  648.  
  649. ************************************************************************
  650. ************************************************************************
  651. -------
  652. Subject: 7) INDIAN E-MAIL ADDRESSES
  653.  
  654.  
  655.     ***** A NOTE ABOUT "FINGER"ing INDIAN SITES*******
  656.  
  657. NCST has not received information for shiva.ernet.in and thus
  658. finger @shiva.ernet.in FAILS.
  659.  
  660. First of all, it is *NOT* like the finger of UNIX systems.  It is just a
  661. database maintained at NCST - a database that has enough info.
  662.  
  663. To get info and help about email addresses in India, type
  664.  
  665. % whois -h sangam.ernet.in  help
  666.  
  667. For a list of all the nodes in India, type
  668.  
  669. % whois -h sangam.ernet.in ""        # The double quotes are essential
  670.  
  671. This w'd give info regarding the nodes presently represented in the
  672. data base maintained by the NCST people at Bombay.
  673.  
  674. For a list of the nodes present in a given city, type
  675.  
  676. % whois -h sangam.ernet.in  city_name
  677.  
  678. where city_name can be part/whole of the city u wish to send mail to.
  679. for eg. for a list of all node names in bangalore, try
  680. % whois -h sangam.ernet.in bang
  681.  
  682. Once the exact node name is known, to obtain the login name of the
  683. person you wish to contact,
  684.  
  685. % whois -h sangam.ernet.in  name_of_the_person@node_name
  686.  
  687. where name_of_the_person can be part/whole of the person's last/first
  688. or middle name [ Nick names not allowed :-) ]
  689.  
  690. All searches are case-insensitive.
  691.  
  692. The NCST people are maintaining this database as a service to the public.
  693. It is not polite to  flood the postmaster's mailbox with
  694. requests regarding the database and with requests for forwarding the mail.
  695. If the database FAILS to answer your query ONLY THEN send mail to
  696.  
  697. postmaster@the_node_u_want_to_send_mail.ernet.in
  698.  
  699. The internet address of shakti.ernet.in is 144.16.1.1
  700.  
  701.        ********************************************************
  702.  
  703.                              SITES IN INDIA
  704.  
  705.  
  706.   +============== ADDRESSING INDIAN SITES FROM OUTSIDE INDIA ==============+
  707.   |                                                                        |
  708.   |  If you are at a site that can     |   USER@SITE.ernet.in              |
  709.   |  handle domains                    |                                   |
  710.   |------------------------------------------------------------------------|
  711.   |  If you are at a site that can't   |   ...!uunet!UUCP-PATH!USER        |
  712.   |  handle domains                    |                                   |
  713.   |------------------------------------------------------------------------|
  714.   |  Where: UUCP-PATH  - is the uucp path for the site. See list below.    |
  715.   |         USER       - recipient's mail name on the destination host.    |
  716.   |         SITE       - recipient's site name on the (ERNET) network.     |
  717.   |                                                                        |
  718.   |  Note:  Users using the C-shell under Unix systems may have to quote   |
  719.   |         the "!" characters in the mail address.  This can be done by   |
  720.   |         using "\!" in place of "!".                                    |
  721.   +========================================================================+
  722.  
  723.      Each site is required to have a postmaster who can answer general
  724.      inquiries about users and hosts at that site.
  725.  
  726. ------------------------------------------------------------------------------
  727. SITE        ORGANISATION/INSTITUTION                 UUCP-PATH
  728. ====        ========================                 =========
  729.